home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / lib / calc / help / file < prev    next >
Text File  |  1995-07-17  |  7KB  |  157 lines

  1. Using files
  2.  
  3.     The calculator provides some functions which allow the program to
  4.     read or write text files.  These functions use stdio internally,
  5.     and the functions appear similar to some of the stdio functions.
  6.     Some differences do occur, as will be explained here.
  7.  
  8.     Names of files are subject to ~ expansion just like the C or
  9.     Korn shell.  For example, the file name:
  10.  
  11.         ~/.rc.cal
  12.     
  13.     refers to the file '.rc.cal' under your home directory.  The
  14.     file name:
  15.  
  16.         ~chongo/.rc.cal
  17.  
  18.     refers to the a file 'rc.cal' under the home directory of 'chongo'.
  19.  
  20.     A file can be opened for either reading, writing, or appending.
  21.     To do this, the 'fopen' function is used, which accepts a filename
  22.     and an open mode, both as strings.  You use 'r' for reading, 'w'
  23.     for writing, and 'a' for appending.  For example, to open the file
  24.     'foo' for reading, the following could be used:
  25.  
  26.         fd = fopen('foo', 'r');
  27.  
  28.     If the open is unsuccessful, the numeric value of errno is returned.
  29.     If the open is successful, a value of type 'file' will be returned.
  30.     You can use the 'isfile' function to test the return value to see
  31.     if the open succeeded.  You should assign the return value of fopen
  32.     to a variable for later use.  File values can be copied to more than
  33.     one variable, and using any of the variables with the same file value
  34.     will produce the same results.
  35.  
  36.     If you overwrite a variable containing a file value or don't save the
  37.     result of an 'fopen', the opened file still remains open.  Such 'lost'
  38.     files can be recovered by using the 'files' function.  This function
  39.     either takes no arguments or else takes one integer argument.  If no
  40.     arguments are given, then 'files' returns the maximum number of opened
  41.     files.  If an argument is given, then the 'files' function uses it as
  42.     an index into an internal table of open files, and returns a value
  43.     referring to one the open files.  If that entry in the table is not
  44.     in use, then the null value is returned instead.  Index 0 always
  45.     refers to standard input, index 1 always refers to standard output,
  46.     and index 2 always refers to standard error.  These three files are
  47.     already open by the calculator and cannot be closed.  As an example
  48.     of using 'files', if you wanted to assign a file value which is
  49.     equivalent to stdout, you could use:
  50.  
  51.         stdout = files(1);
  52.  
  53.     The 'fclose' function is used to close a file which had been opened.
  54.     When this is done, the file value associated with the file remains
  55.     a file value, but appears 'closed', and cannot be used in further
  56.     file-related calls (except fclose) without causing errors.  This same
  57.     action occurs to all copies of the file value.  You do not need to
  58.     explicitly close all the copies of a file value.  The 'fclose'
  59.     function returns the numeric value of errno if there had been an
  60.     error using the file, or the null value if there was no error.
  61.  
  62.     File values can be printed.  When this is done, the filename of the
  63.     opened file is printed inside of quote marks.  If the file value had
  64.     been closed, then the null string is printed.  If a file value is the
  65.     result of a top-level expression, then in addition to the filename,
  66.     the open mode, file position, and possible EOF, error, and closed
  67.     status is also displayed.
  68.  
  69.     File values can be used inside of 'if' tests.  When this is done,
  70.     an opened file is TRUE, and a closed file is FALSE.  As an example
  71.     of this, the following loop will print the names of all the currently
  72.     opened non-standard files with their indexes, and then close them:
  73.  
  74.         for (i = 3; i < files(); i++) {
  75.             if (files(i)) {
  76.                 print i, files(i);
  77.                 fclose(files(i));
  78.             }
  79.         }
  80.  
  81.     The functions to read from files are 'fgetline' and 'fgetc'.
  82.     The 'fgetline' function accepts a file value, and returns the next
  83.     input line from a file.  The line is returned as a string value, and
  84.     does not contain the end of line character.  Empty lines return the
  85.     null string.  When the end of file is reached, fgetline returns the
  86.     null value.  (Note the distinction between a null string and a null
  87.     value.)  If the line contained a numeric value, then the 'eval'
  88.     function can then be used to convert the string to a numeric value.
  89.     Care should be used when doing this, however, since eval will
  90.     generate an error if the string doesn't represent a valid expression.
  91.     The 'fgetc' function returns the next character from a file as a
  92.     single character string.  It returns the null value when end of file
  93.     is reached.
  94.  
  95.     The 'printf' and 'fprintf' functions are used to print results to a
  96.     file (which could be stdout or stderr).  The 'fprintf' function
  97.     accepts a file variable, whereas the 'printf' function assumes the
  98.     use of 'files(1)' (stdout).  They both require a format string, which
  99.     is used in almost the same way as in normal C.  The differences come
  100.     in the interpretation of values to be printed for various formats.
  101.     Unlike in C, where an unmatched format type and value will cause
  102.     problems, in the calculator nothing bad will happen.  This is because
  103.     the calculator knows the types of all values, and will handle them
  104.     all reasonably.  What this means is that you can (for example), always
  105.     use %s or %d in your format strings, even if you are printing a non-
  106.     string or non-numeric value.  For example, the following is valid:
  107.  
  108.         printf("Two values are %d and %s\n", "fred", 4567);
  109.  
  110.     and will print "Two values are fred and 4567".
  111.  
  112.     Using particular format characters, however, is still useful if
  113.     you wish to use width or precision arguments in the format, or if
  114.     you wish to print numbers in a particular format.  The following
  115.     is a list of the possible numeric formats:
  116.  
  117.         %d        print in currently defined numeric format
  118.         %f        print as floating point
  119.         %e        print as exponential
  120.         %r        print as decimal fractions
  121.         %x        print as hex fractions
  122.         %o        print as octal fractions
  123.         %b        print as binary fractions
  124.  
  125.     Note then, that using %d in the format makes the output configurable
  126.     by using the 'config' function to change the output mode, whereas
  127.     the other formats override the mode and force the output to be in
  128.     the specified format.
  129.  
  130.     Using the precision argument will override the 'config' function
  131.     to set the number of decimal places printed.  For example:
  132.  
  133.         printf("The number is %.100f\n", 1/3);
  134.  
  135.     will print 100 decimal places no matter what the display configuration
  136.     value is set to.
  137.  
  138.     The %s and %c formats are identical, and will print out the string
  139.     representation of the value.  In these cases, the precision argument
  140.     will truncate the output the same way as in standard C.
  141.  
  142.     If a matrix or list is printed, then the output mode and precision
  143.     affects the printing of each individual element.  However, field
  144.     widths are ignored since these values print using multiple lines.
  145.     Field widths are also ignored if an object value prints on multiple
  146.     lines.
  147.  
  148.     The final file-related functions are 'fflush', 'ferror', and 'feof'.
  149.     The 'fflush' function forces buffered output to a file.  The 'ferror'
  150.     function returns nonzero if an error had occurred to a file.  The
  151.     'feof' function returns nonzero if end of file has been reached
  152.     while reading a file.
  153.  
  154.     The 'strprintf' function formats output similarly to 'printf',
  155.     but the output is returned as a string value instead of being
  156.     printed.
  157.